home *** CD-ROM | disk | FTP | other *** search
- unit Unit2;
- (***************************************************************************)
- (* *)
- (* ##### ##### ##### ##### ##### #### ###### ####### *)
- (* # # # # # # # # # # *)
- (* # # # # ### # #### # # ### # *)
- (* # # # # # # # # # # # *)
- (* ##### ##### ##### ##### ##### #### # # *)
- (* *)
- (***************************************************************************)
- {
- (c) 1995 Cogisoft
- This component is FREE distribution. Use it for your own utilization.
- But you can't sell an application, using this component, without the
- authorization of Cogisoft.
-
- COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
- Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
-
- NO CODING !!!
- Jerome VOLLET, CompuServe : 100560,3342
- }
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls, Translat, Lingua;
-
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- OKButton: TBitBtn;
- ProgramIcon: TImage;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Comments: TLabel;
- Lingua1: TLingua;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutBox: TAboutBox;
-
- implementation
-
- {$R *.DFM}
-
- end.
-
-